current_month;
返回: Real(实数)
该 只读 变量将根据当前月来返回一个数值,1代表一月,12代表12月,以此类推。
draw_text((32, 32, "Today is " + string(current_day) + "/" + string (current_month) + "/" + string(current_year) +".");
上述代码将会绘制一个年月日文本。